-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
requirements.txt and download scripts #1
base: master
Are you sure you want to change the base?
Conversation
Hi Matthias. Can I ask you why you put all those pip requirements in the requirements.txt file? I only needed some 3 requirements originally, I think. |
Hi, sure! I basically kept installing dependencies until I was able to run the script in a new virtualenv. Then I just did pip freeze, so that's why it is very verbose. Probably tensorflow, future, scikit-image, scipy and matplotlib is enough. Would you like me to test? Oh, and frankly I've just realized that my script does not download the results of the COCO dataset, so that evaluation fails. Let me fix that aswell. |
Is matplotlib needed? Also, you seem to have misunderstood what "mscoco_dir" is referring to. It's referring to the evaluation toolkit not the dataset. So this is wrong: Can you please remove the backup text files (those that have ~ in their file name) as well? In README you can say that the results folder has to be cleared before running the program. Sorry I am taking so long to give feedback. |
Hi there!
I was able to run your code smoothly after figuring out the dependencies and getting the data from the provided URLs. To make this process a little easier for others, I've added a requirements.txt, a few shell scripts (to download the data/tools) and instructions to the readme. Please review!
All best,
Matthias